From 56518d883fd27f33886915e83ac4986855472285 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9my=20Lal?= Date: Mon, 13 Jun 2022 08:11:34 +0100 Subject: [PATCH] on mipsel, mips64el, node --jitless segfaults Last-Update: 2020-06-03 Forwarded: https://github.com/nodejs/node/issues/33703 Gbp-Pq: Topic mips Gbp-Pq: Name no_jitless.patch --- test/parallel/test-cli-node-options.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/parallel/test-cli-node-options.js b/test/parallel/test-cli-node-options.js index 0e824fe07..98d4612c9 100644 --- a/test/parallel/test-cli-node-options.js +++ b/test/parallel/test-cli-node-options.js @@ -69,7 +69,8 @@ if (common.hasCrypto) { expect('--abort_on-uncaught_exception', 'B\n'); expect('--disallow-code-generation-from-strings', 'B\n'); expect('--huge-max-old-generation-size', 'B\n'); -expect('--jitless', 'B\n'); +if (!['mipsel', 'mips64el'].includes(process.arch)) + expect('--jitless', 'B\n'); expect('--max-old-space-size=0', 'B\n'); expect('--stack-trace-limit=100', /(\s*at f \(\[(eval|worker eval)\]:1:\d*\)\r?\n)/, -- 2.30.2